h1 {
  color: #c4501b;
  font-size: 50px;
  text-align: center;
}

.contentContainer {
  display: flex;
  justify-content: center;
}

.introduction h2{
  color: #594b4b;
  font-size: 30px;
  text-align: center;
  margin: 20px auto;
  max-width: 70%;
}

.gridContainer {
  display: grid;
  justify-content: center;
  grid-template-columns: minmax(300px, 1fr) 3fr;
  width: 1500px;
  gap: 40px;
  margin: 20px;
  padding: 0;
  margin-bottom: 50px;
}

.imgBox {
  display: flex;
  align-items: center;
  justify-content: center;
}

.imgBox img {
  /*width: auto; */
  /*height: auto;*/
  max-width: 100%;
  max-height: 400px;
  object-fit: contain; 
  display: block;
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.1); /* Efek shadow agar lebih smooth */
  transition: transform 0.3s ease-in-out; /* Animasi hover */
}
.imgBox img:hover {
  transform: scale(1.05); /* 🔥 Sedikit zoom saat hover */
}

.textBox {
  position: relative;
  padding: 20px;
  border-radius: 10px;
  background-color: #E8D3C5;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1); /* Shadow agar terangkat */
}

.textBox h2 {
  color: #3f1515;
  font-size: 30px;
  margin: 0;
  margin-bottom: 10px;
}

.subtitle {
  color: #594b4b;
  font-size: 28px;
  margin: 0;
  margin-bottom: 10px;
}

.galleryDescription {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: 4.5em; 
  transition: max-height 0.3s ease-in-out;
  text-align: justify;
  font-size: 25px;
  margin: 0;
}

.show-full {
  display: block;
  -webkit-line-clamp: unset;
  max-height: none;
}

.read-more {
  color: #c4501b; /* Warna utama agar serasi */
  cursor: pointer;
  font-weight: bold;
  display: inline-block;
  margin-top: 5px;
  padding: 3px 8px;
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
  font-size: 20px;
}

.read-more:hover {
  background-color: #c4501b;
  color: white;
}

.buttonPosition {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}

.contactButton {
  border-radius: 12px;
  background-color: white;
  color: #3f1515;
  padding: 15px 50px;
  border: none;
  box-shadow: 0px 2px 1px rgba(0, 0, 0, 0.2);
  margin-bottom: 5px;
  margin-top: 20px;
  transition: background-color 0.1s ease-in-out;
}

.contactButton:hover {
    background-color: #000000;
    color: #fff;
}

@media (max-width: 1000px){
  .gridContainer {
    display: block;
    margin-bottom: 0;
    border-bottom: 1px solid #000000;
  }

  .imgBox{
    text-align: center;
    
  }

  .imgBox img {
    max-height: 200px;
    box-shadow: 5px 5px 3px rgba(0, 0, 0, 0.2);
  }

  .textBox {
    margin: 40px 40px;
    margin-top: 10px;
    padding-bottom: 30px;
    border-bottom: 1px solid #000000;
  }
  
  .read-more {
      font-size: 2.5vw;
  }

  h1 {
    font-size: 30px;
  }

  .textBox h2 {
    font-size: 4vw;
    text-align: center;
  }

  .introduction h2{
    font-size: 2vw;
  }

  .subtitle {
    font-size: 3vw;
    text-align: center;
  }

  .galleryDescription {
    font-size: 2.5vw;
  }

  .buttonPosition {
    justify-content: center;
  }

  .contactButton {
    text-align: center;
    padding: 8px 25px;
    border-radius: 6px;
    font-size: 10px;
  }
}

